home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 276-300 / 285 / liner / source / yafr / yafrhead.h < prev   
C/C++ Source or Header  |  1995-03-14  |  756b  |  36 lines

  1. #include <exec/types.h>
  2. #include <exec/exec.h>
  3. #include <intuition/intuition.h>
  4. #include <libraries/dos.h>
  5. #include <libraries/dosextens.h>
  6. #include <YAFR:WdwDefs.h>
  7.  
  8. extern struct IntuitionBase *IntuitionBase;
  9. extern struct GfxBase *GfxBase;
  10.  
  11. #define XBorder 8
  12. #define YBorder 45
  13.  
  14. #define GN_CANCEL  0
  15. #define GN_NEWDIR  1
  16. #define GN_NEWDISK 2
  17. #define GN_OK      3
  18. #define GN_PARENT  4
  19. #define GN_RIEN    5
  20. #define GN_DONE    6
  21.  
  22. struct fibNode
  23.    {
  24.    struct FileInfoBlock fib;
  25.    struct fibNode *next,*prev;
  26.    };
  27.  
  28. struct fibHeader
  29.    {
  30.    struct fibNode *directory,*first,*last,*current,*top;
  31.    };
  32.  
  33. USHORT yafr_e_FilenamePenColor,yafr_e_DirnamePenColor;
  34.    /*Global for my convenience, long filename that prob won't be*/
  35.    /*duplicated in a program*/
  36.